home *** CD-ROM | disk | FTP | other *** search
- ;This script copies the users' config.sys, autoexec.bat and net.cfg to
- ; their user directory.
- DEFINE "NAME" STRING
- STRCOPY NAME "F:\USERS"
- APPENDPATH NAME [LOGINNAME]
- ; These lines build the path to the users' own directory. Replace "users"
- ; with the appropriate directory for your network. The variable "Name"
- ; is equal to "\users\[loginname]".
- COPY [BOOT_ROOT] "CONFIG.SYS" NAME "CONFIG.SYS"
- COPY [BOOT_ROOT] "AUTOEXEC.BAT" NAME "AUTOEXEC.BAT"
- COPY [NETCFG] "NET.CFG" NAME "NET.CFG"
- ; These lines copy the files from the users' workstations to their
- ; user directory on the network. To copy other system files, such as the
- ; win.ini, replace the first parameter with the appropriate variable, such
- ; as [windir] and the second and fourth parameter with the appropriate
- ; filename.